home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Argus Frameworks 2.1 / Argus Libraries 2.1 / Argus Standards / ArgusAboutBalloons.r < prev    next >
Text File  |  1996-01-04  |  2KB  |  68 lines

  1. /**********************************************************************
  2.  
  3.     ArgusAboutBalloons.r
  4.  
  5. ***********************************************************************/
  6.  
  7. #include <Types.r>
  8. #include <BalloonTypes.r>
  9.  
  10. resource 'hdlg' (599, "About Balloons", purgeable){
  11.   /* Header */
  12.   HelpMgrVersion,
  13.   0,                  /* start help with first item in DITL */
  14.   hmSaveBitsNoWindow, /* hmDefaultOptions or hmSaveBitsNoWindow */
  15.   0,                  /* balloon definition */
  16.   0,                  /* variation code or position code, reference
  17.                          IM: More Macintosh Toolbox p3-10 */
  18.   
  19.   /* Missing Component */
  20.   HMSkipItem {
  21.   },
  22.   
  23.   /* Help */
  24.   {
  25.     /* [1] */
  26.     HMStringREsItem { /* store help messages in STR# 500 */
  27.     { 0, 0 },         /* default tip location is { 0, 0 } */
  28.     { 0, 0, 0, 0 },   /* default alternate rectangle */
  29.     599, 1,           /* OK button */
  30.     0, 0,             /* never dimmed */
  31.     0, 0,             /* never checked */
  32.     0, 0              /* never marked */
  33.     },
  34.     
  35.     /* [2] */
  36.     HMStringREsItem {
  37.     { 0, 0 },
  38.     { 0, 0, 0, 0 },
  39.     599, 2,           /* Help button */
  40.     0, 0,
  41.     0, 0,
  42.     0, 0
  43.     },
  44.     
  45.     /* [3] */
  46.     HMSkipItem {      /* Picture text */
  47.     },
  48.  
  49.     /* [4] */
  50.     HMSkipItem {      /* Application name text */
  51.     },
  52.  
  53.     /* [5] */
  54.     HMSkipItem {      /* Application name text */
  55.     },
  56.   }
  57. };
  58.  
  59. resource 'STR#' (599, "About Dialog Help Strings") {
  60.   {
  61.   /* [1] */
  62.   "To dismiss dialog, click this button.";
  63.   /* [2] */
  64.   "To display help for this application, click this button.";
  65.   }
  66. };
  67.  
  68. // End of File